chore(deps): update tanstack/config digest to a4c6d06#331
Conversation
|
Note Reviews pausedIt looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the Use the following commands to manage reviews:
Use the checkboxes below for quick actions:
📝 WalkthroughWalkthroughThis PR updates three GitHub Actions workflows to use newer pinned commit SHAs for shared TanStack/config actions (Setup Tools, Changeset Preview, and Comment on PRs) in autofix, pr, and release workflows. ChangesWorkflow Action Dependency Updates
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Poem
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Comment |
|
View your CI Pipeline Execution ↗ for commit cf5d1d5
☁️ Nx Cloud last updated this comment at |
@tanstack/angular-store
@tanstack/lit-store
@tanstack/preact-store
@tanstack/react-store
@tanstack/solid-store
@tanstack/store
@tanstack/svelte-store
@tanstack/vue-store
commit: |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In @.github/workflows/pr.yml:
- Line 79: The version-preview CI job lacks GitHub Issues write permission
causing the changeset-preview step (uses:
TanStack/config/.github/changeset-preview@6ddd247a...) to fail with 403; update
the version-preview job in .github/workflows/pr.yml to add a permissions section
that grants issues: write for the job so the changeset-preview action can post
comments via the Issues API.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro
Run ID: 3f7724ab-3b76-4fc6-bcbb-ce3ec4beac41
📒 Files selected for processing (3)
.github/workflows/autofix.yml.github/workflows/pr.yml.github/workflows/release.yml
| uses: TanStack/config/.github/setup@6ddd247a7748fef503de0818293a732f6447fd92 # main | ||
| - name: Changeset Preview | ||
| uses: TanStack/config/.github/changeset-preview@e4b48f16568324f76f467aa4c2aac2f05db632c3 # main | ||
| uses: TanStack/config/.github/changeset-preview@6ddd247a7748fef503de0818293a732f6447fd92 # main |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Verify permissions and changeset-preview usage in PR workflow
rg -n -C2 '^\s*permissions:|issues:\s*write|pull-requests:\s*write|changeset-preview@' .github/workflows/pr.ymlRepository: TanStack/store
Length of output: 557
🏁 Script executed:
cat -n .github/workflows/pr.ymlRepository: TanStack/store
Length of output: 3169
Add issues: write permission to the version-preview job.
The changeset-preview action at line 79 posts comments via the GitHub Issues API. Without the issues: write permission, this step fails with a 403 error.
🔧 Suggested fix
version-preview:
name: Version Preview
runs-on: ubuntu-latest
+ permissions:
+ contents: read
+ issues: write
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In @.github/workflows/pr.yml at line 79, The version-preview CI job lacks GitHub
Issues write permission causing the changeset-preview step (uses:
TanStack/config/.github/changeset-preview@6ddd247a...) to fail with 403; update
the version-preview job in .github/workflows/pr.yml to add a permissions section
that grants issues: write for the job so the changeset-preview action can post
comments via the Issues API.
0020ab4 to
4a24ec3
Compare
4a24ec3 to
6b58adf
Compare
6b58adf to
cf5d1d5
Compare
This PR contains the following updates:
e4b48f1→a4c6d06Configuration
📅 Schedule: (UTC)
* 0-3 * * 1)🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.